home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SuperHack
/
SuperHack CD.bin
/
CODING
/
CPP
/
WFC010.ZIP
/
INCLUDE
/
CWAIT.HPP
< prev
next >
Wrap
C/C++ Source or Header
|
1995-10-03
|
826b
|
38 lines
#if ! defined ( WAIT_CURSOR_CLASS_HEADER )
/*
** Author: Samuel R. Blackburn
** CI$: 76300,326
** Internet: sammy@sed.csc.com
**
** You can use it any way you like as long as you don't try to sell it.
**
** Any attempt to sell WFC in source code form must have the permission
** of the original author. You can produce commercial executables with
** WFC but you can't sell WFC.
**
** Copyright, 1995, Samuel R. Blackburn
*/
#define WAIT_CURSOR_CLASS_HEADER
class CWaitCursor
{
protected:
HCURSOR m_PreviousCursorHandle;
public:
CWaitCursor( int cursor_number = 0 );
/*
** Destructor should be virtual according to MSJ article in Sept 1992
** "Do More with Less Code:..."
*/
virtual ~CWaitCursor();
};
#endif // WAIT_CURSOR_CLASS_HEADER